home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 111 / XENIATGM111.iso / Soluzioni / Speciale The Sims / Files / HulaLamp1.exe / script.txt next >
Text File  |  2001-02-07  |  1KB  |  34 lines

  1. ; Electric `Ukulele Lady Lamp Script
  2.  
  3. ; These two tokens are necessary for the dialog prompts... 
  4. ; STRING_###  refers to strings in the strings.iff  (They will be assigned based on the current language setting)
  5. [set]    "%%PACKAGE_NAME%%" "STRING_1"
  6. [set]    "%%APPLICATION_NAME%%" "STRING_2"
  7.  
  8. ; Read some relevent registry values into these tokens (to be used below)
  9. [readreg] "%%GAME_PATH%%" "Software\Maxis\The Sims" "SIMS_DATA"
  10. [readreg] "%%LANGUAGE%%"  "Software\Maxis\The Sims" "SIMS_LANGUAGE"
  11.  
  12. ; setlanguage must be done before any set commands that refer to the Strings.iff
  13. ; English is the default if this command is left out
  14. [setlanguage]    "%%LANGUAGE%%"
  15.  
  16. ; Reset these tokens based on the newly set language
  17. [set]    "%%PACKAGE_NAME%%" "STRING_1"
  18. [set]    "%%APPLICATION_NAME%%" "STRING_2"
  19.  
  20.  
  21. ; This ends the preprocessing and starts making changes
  22. ; This is where the application brings up the first dialog box.
  23. [begin]
  24.  
  25. ; Make Directory
  26. [md] "%%GAME_PATH%%\Downloads\LampHulaUke"
  27.  
  28.  
  29.  
  30. ; Copy Files
  31. [copy] ".\LampHulaUke\*.*"        "%%GAME_PATH%%\Downloads\LampHulaUke\"
  32.  
  33.  
  34.